/* Reset stiluri implicite */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  body {
    font-family: Arial, sans-serif;
    background-color: #f4f4f4;
    line-height: 1.6;
    color: #333;
  }
  
  /* Header */
  .header {
    background-color: #000000;
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 1000;
  }
  
  .navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
  }
  
  .nav-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 18px;
    transition: color 0.3s ease;
  }
  
  .nav-links a:hover {
    color: #ff3131;
  }

  .ep-description {
    background-color: #2d2d2d; /* Negru */
    color: #ffffff; /* Alb */
    padding: 60px 20px;
    text-align: center;
  }
  
  .ep-description .content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
  }
  
  .ep-description .text {
    flex: 1;
    text-align: left;
  }
  
  .ep-description h2 {
    font-size: 2.5rem;
    color: #ff3131; /* Roșu */
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
  }
  
  .ep-description h2 span {
    display: block; /* Pune "EP Equipment" pe un rând nou */
    color: #ffffff; /* Alb */
    background-color: #ff3131; /* Roșu */
    padding: 0 5px;
    border-radius: 5px;
  }
  
  .ep-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
  }
  
  .ep-description ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
  }
  
  .ep-description ul li {
    font-size: 1rem;
    line-height: 1.6;
    color: #cccccc;
  }
  

  .ep-description .image {
    flex: 1;
    text-align: center;
}

.ep-description .image img {
    width: 100%;
    max-width: 700px; /* Dimensiune maximă mai mare pentru imagine */
    border-radius: 8px;
    transition: transform 0.3s ease; /* Adaugă o animație subtilă */
}


  /* Grid pentru carduri */
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Carduri flexibile */
    gap: 20px; /* Spațiu între carduri */
    justify-items: center; /* Centrează cardurile */
  }
  
/* Stil pentru carduri */
.product-card {
  background-color: #ffffff; /* Alb pentru card */
  border-radius: 8px; /* Colțuri rotunjite */
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Umbră subtilă */
  width: 100%;
  max-width: 350px; /* Dimensiune maximă a cardului mărită */
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-10px); /* Cardul se ridică ușor */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4); /* Umbră mai pronunțată */
}

/* Imaginea din card */
.product-card img {
  width: 100%; /* Imaginea ocupă toată lățimea cardului */
  height: 300px; /* Înălțime fixă */
  object-fit: contain; /* Imaginea încape complet în spațiu */
  background-color: #f4f4f4; /* Fundal pentru a umple golurile */
}


  
  /* Titlul cardului */
  .product-card h3 {
    font-size: 1.5rem;
    color: #000000; /* Culoare text */
    margin: 15px 0;
    font-family: 'Poppins', sans-serif;
  }
  
  /* Text descriptiv */
  .product-card p {
    font-size: 1rem;
    margin: 0 15px 20px;
    color: #555;
  }
  
  /* Buton */
  .product-card .btn {
    display: inline-block;
    background-color: #ff3131;
    color: #ffffff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-bottom: 15px;
  }
  
  .product-card .btn:hover {
    background-color: #333;
    color: #ffffff;
    transform: scale(1.05); /* Mărire subtilă */
  }
  
  /* Contact Section */
  .contact-section {
    background-color: #ff3131;
    color: #ffffff;
    padding: 50px 20px;
    text-align: center;
  }
  
  /* Footer */
  .footer {
    background-color: #000000;
    color: #ffffff;
    text-align: center;
    padding: 1rem 0;
  }